home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 July / Macworld (1999-07).dmg / Shareware World / Info / For Developers / Mops 3.4.sea / Mops source / Toolbox classes / Keymap < prev    next >
Text File  |  1995-11-23  |  289b  |  15 lines

  1. \ KIM
  2. \ A simple utility for keyboard-oriented games
  3. \ ed-boy 951013
  4.  
  5. :class KeyMap super{ object }
  6. record
  7. {    16    bytes    theKeys
  8. }
  9.  
  10. :m Check: ^base call getKeys  ;m        \ takes a snapshot of the state of the keyboard
  11. :m Test: 0 ^base rot call BitTst  ;m    \ inspects the snapshot
  12.         
  13. ;class
  14.  
  15.